home *** CD-ROM | disk | FTP | other *** search
- ;
- ; This is a script file that establishes a PPP session with CIS
- ; This script should work BOTH with Microsoft's scripting DLL and
- ; our own, even though we support only a subset of Microsoft's
- ; scripting language. It should also work with the crippled earlier
- ; version of MS's scripting DLL
- ;
- ; Main entry point to script
- ;
-
- proc main
-
- delay 1
- transmit "<cr>"
- delay 1
-
- transmit "+<cr>"
-
- waitfor "Host Name:"
- transmit $USERID
- transmit "<cr>"
-
- waitfor "Password:"
-
- transmit $PASSWORD
- transmit "<cr>"
-
- endproc
-